home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / VPOJAVA.DLL / SOURCE / SIMPLE < prev    next >
Text File  |  1998-12-10  |  805b  |  29 lines

  1. /*
  2.     A basic extension of the java.applet.Applet class
  3.  */
  4.  
  5. import java.awt.*;
  6. import java.applet.*;
  7.  
  8. public class Applet1 extends Applet
  9. {
  10.     public void init()
  11.     {
  12.         // Take out this line if you don't use symantec.itools.net.RelativeURL or symantec.itools.awt.util.StatusScroller
  13.         symantec.itools.lang.Context.setApplet(this);
  14.     
  15.         // This code is automatically generated by Visual Cafe when you add
  16.         // components to the visual environment. It instantiates and initializes
  17.         // the components. To modify the code, only use code syntax that matches
  18.         // what Visual Cafe can generate, or Visual Cafe may be unable to back
  19.         // parse your Java file into its visual environment.
  20.         //{{INIT_CONTROLS
  21.         setLayout(null);
  22.         setSize(426,266);
  23.         //}}
  24.     }
  25.     
  26.     //{{DECLARE_CONTROLS
  27.     //}}
  28. }
  29.